Templates

Both automation emails and group emails allow you to use template tags in your email body, so these are really body templates.

There is also a master theme template for each website. When an email is generated the body template goes inside the theme template, so the theme template can specify header and footer, and the body template goes in between.

Using Body templates

Email body templates are evaluated using the MVEL templating language. This uses orb tags, like @{profile.email}. You might be more familiar with velocity templating which looks like $profile.email

If you have links to Kademi pages in your email body and you want the user to be automatically logged in you can use the @{login} tag:

		<tr>
		<td>
		<a href="http://@{website.domainName}/myPage?@{login}" target="_blank">
		<img alt="Book Your Place" border="0" height="35" src="http://@{website.domainName}/edm/img/btn_book.jpg" style="display: block; border: 0px none; font-size: 18px; color: rgb(0, 174, 239); font-family: Arial,Helvetica,sans-serif; font-weight: 500;" width="250" /> 
		</a>
		</td>
		

                   

 

Using theme templates

The master template for all emails in a website is at /theme/emailBase.html

This master template generates the header and footer and should be used for adding styles and fonts. The body of each email is generated and inserted inside this master template.

When creating emails there are a few things to consider

  • Always have an unsubscribe link
  • Make sure people know who the email is from - clear branding helps!
The best way to handle that while minimising the effort you put into each email is to use a base email template. These are velocity templates which generate the framework code of your emails. Your email content can also be templated, and sits inside this framework.

 

Here is the standard Kademi base email template:

		<html xmlns="http://www.w3.org/1999/xhtml">
		    <head>
		        <title></title>
		        <link rel="template" href="theme/plain" />
		    </head>
		    <body>
		        #content
		        <center>
		            <a href="http://$page.closest('website').domainName/profile?$page.model.login"><small>To unsubscribe please login to your profile page</small></a>
		        </center>
		        <img src="http://$page.closest('website').domainName/ack?i=$page.emailItem.id" height="1" width="1" alt=""/>
		    </body>
		</html>
		

 


Notice the unsubscribe link uses this template tag:

		profile?$page.model.login

 

That generates an auto-login token so that the user does not need to login to unsubscribe.

The template also includes a 1 pixel tracking image. You can also integrate your standard branding in header and footer elements which will wrap content generated by your group emails and automation emails

Displaying profile fields and custom fields

You can display information about the user with the user object. For example you can access standard fields like first name and last name like this:

Dear @{user.firstName} @{user.surName},

Please find your order details below:

Custom fields

You can define custom fields when you configure groups on the group management screen. A user can have custom fields for each group they have a membership in.

To display custom fields you can use the allFields property of the user object. This loads all of the custom fields from all groups into a single list. You can use those fields in your email like this, where the field names are the same as configured on the group:

Your favourite colour is @{user.allFields.favColour}

You pet's name is @{user.allFields.petsName}

 

 

Response templates

Here is an example of a responsive template

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:v="urn:schemas-microsoft-com:vml">
<head>

<!-- Define Charset -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<!-- Responsive Meta Tag -->
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
<meta name="viewport" content="width=600,initial-scale = 2.3,user-scalable=no">
<link href='http://fonts.googleapis.com/css?family=Questrial' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600,700,500' rel='stylesheet' type='text/css'>
<title>Kademi September Email</title>
<style type="text/css">
body {
	width: 100%;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	mso-margin-top-alt: 0px;
	mso-margin-bottom-alt: 0px;
	mso-padding-alt: 0px 0px 0px 0px;
}
p, h1, h2, h3, h4 {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}
span.preheader {
	display: none;
	font-size: 1px;
}
html {
	width: 100%;
}
table {
	font-size: 14px;
	border: 0;
}
		
		
		/* ----------- responsivity ----------- */
		@media only screen and (max-width: 798px) {
body[yahoo] .hide-800 {
	display: none !important;
}
body[yahoo] .container800 {
	width: 100% !important;
}
body[yahoo] .container800_img {
	width: 50% !important;
}
body[yahoo] .section800_img img {
	width: 100% !important;
	height: auto !important;
}
body[yahoo] .half-container800 {
	width: 49% !important;
}
}
		
		/* ----------- responsivity ----------- */
		@media only screen and (max-width: 640px) {
/*------ top header ------ */	
body[yahoo] .main-header {
	font-size: 20px !important;
}
body[yahoo] .main-section-header {
	font-size: 28px !important;
}
body[yahoo] .show {
	display: block !important;
}
body[yahoo] .hide {
	display: none !important;
}
body[yahoo] .align-center {
	text-align: center !important;
}
/*----- main image -------*/
body[yahoo] .main-image img {
	width: 440px !important;
	height: auto !important;
}
/* ====== divider ====== */
body[yahoo] .divider img {
	width: 440px !important;
}
/*-------- container --------*/			
body[yahoo] .container590 {
	width: 440px !important;
}
body[yahoo] .container580 {
	width: 400px !important;
}
body[yahoo] .blog-container590 {
	width: 320px !important;
}
body[yahoo] .blog-container580 {
	width: 300px !important;
}
body[yahoo] .container800 {
	width: 440px !important;
}
body[yahoo] .container800_img {
	width: 100% !important;
}
body[yahoo] .section800_img img {
	width: 100% !important;
}
body[yahoo] .half-container {
	width: 200px !important;
}
body[yahoo] .main-button {
	width: 290px !important;
}
/*-------- secions ----------*/
body[yahoo] .section-item {
	width: 440px !important;
}
body[yahoo] .section-img img {
	width: 320px !important;
	height: auto !important;
}
body[yahoo] .team-img img {
	width: 100% !important;
	height: auto !important;
}
}
 @media only screen and (max-width: 479px) {
/*------ top header ------ */
body[yahoo] .main-header {
	font-size: 20px !important;
}
body[yahoo] .main-section-header {
	font-size: 24px !important;
}
/* ====== divider ====== */
body[yahoo] .divider img {
	width: 280px !important;
}
body[yahoo] .align-center {
	text-align: center !important;
}
/*-------- container --------*/			
body[yahoo] .container590 {
	width: 280px !important;
}
body[yahoo] .container580 {
	width: 260px !important;
}
body[yahoo] .blog-container590 {
	width: 280px !important;
}
body[yahoo] .blog-container580 {
	width: 260px !important;
}
body[yahoo] .container800 {
	width: 100% !important;
}
body[yahoo] .container800_img {
	width: 100% !important;
}
body[yahoo] .section800_img img {
	width: 100% !important;
	height: auto !important;
}
body[yahoo] .half-container800 {
	width: 100% !important;
}
body[yahoo] .half-container {
	width: 130px !important;
}
body[yahoo] .container500 {
	width: 280px !important;
}
/*-------- secions ----------*/
body[yahoo] .section-item {
	width: 280px !important;
}
body[yahoo] .section-img img {
	width: 280px !important;
	height: auto !important;
}
}
</style>
</head>

<body yahoo="fix" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ======= header ======= -->
<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <tbody>
                    <tr>
                      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr><!-- ======= logo ======= -->
                              <td align="center"><a class="editable_img" href="http://www.kademi.co/" style="display: block; border-style: none !important; border: 0 !important;"><img alt="Kademi" border="0" src="http://www.kademi.co/theme/images/emails/logoemail.png" style="display: block; width: auto;" width="93" /></a></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 10px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="340">
                  <tbody>
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                                  <tbody>
                                    <tr>
                                      <td height="6" style="font-size: 6px; line-height: 6px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="center" style="color: #a1a5b1; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 20px;"><div class="editable_text" style=" line-height: 20px;"><span class="text_container"><a class="text_color" href="http://www.kademi.co/" style="color: #a1a5b1; text-decoration: none;">Overview</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="text_color" href="http://www.kademi.co/blogs/" style="color: #a1a5b1; text-decoration: none;">Blog</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="text_color" href="http://www.kademi.co/contact.html" style="color: #a1a5b1; text-decoration: none;">Contact</a> </span></div></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                          <tbody>
                            <tr>
                              <td height="20" style="font-size: 20px; line-height: 20px;" width="2">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590 hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td height="6" style="font-size: 6px; line-height: 6px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0">
                                  <tbody>
                                    <tr>
                                      <td><a class="editable_img" href="https://www.linkedin.com/company/2683735" style="border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/google-icon.png" style="display: block; width: 20px;" width="20" /></a></td>
                                      <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
                                      <td><a class="editable_img" href="https://www.facebook.com/pages/Kademico/526109317475941" style="border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/facebook-icon.png" style="display: block; width: 20px;" width="20" /></a></td>
                                      <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
                                      <td><a class="editable_img" href="https://twitter.com/kademihq" style="border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/twitter-icon.png" style="display: block; width: 20px;" width="20" /></a></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end header ======= --> 

<!-- ======= main section ======= -->

<table bgcolor="e4edf2" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td align="center" style=" background-color:#e9135a; background-size: cover; background-position: top center; background-repeat: no-repeat;"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center" class="title_color main-section-header" style="color: #ffffff; font-size: 36px; font-family: Raleway, Calibri, sans-serif; font-weight: 300; mso-line-height-rule: exactly; line-height: 36px;"><!-- ======= section header ======= -->
                
                <div style="line-height: 36px;">ONE PLATFORM.<br />
                  ENDLESS POSSIBILITIES.</div></td>
            </tr>
            <tr>
              <td height="15" style="font-size: 15px; line-height: 15px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="50">
                  <tbody>
                    <tr>
                      <td height="4" style="font-size: 4px; line-height: 4px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="6" style="font-size: 30px; line-height: 6px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="600">
                  <tbody>
                    <tr>
                      <td align="center" class="align-center title_color" style="color: #ffffff; font-size: 14px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px">A digital platform to build enterprise solutions in lightening speed.</div></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= 1/2 headline 1/2 text ======= -->

<table bgcolor="f8f9fa" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr class="hide">
      <td height="15" style="font-size: 15px; line-height: 15px;">&nbsp;</td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590 bg_color" width="590">
          <tbody>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="section-item" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="200">
                  <tbody>
                    <tr>
                      <td align="left" class="align-center title_color" style="color: #384050; font-size: 20px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; line-height: 33spx;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 33px"><span style="line-height: 33px"><a href="http://www.kademi.co/"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/EDM-hero2.png" style="display: block; width: 179px;" width="179" /></a></span></div></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="370">
                  <tbody>
                    <tr>
                      <td align="left" class="title_color main-header" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px"><a href="http://www.kademi.co/" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px; text-decoration:none;">Powering your business </a></div></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" class="align-left text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 24px;"><!-- ======= section subtitle ====== -->
                        
                        <div style="line-height: 24px;">A cloud platform with powerful capabilities supporting an extensive App Ecosystem and Powerful Back-Office to build highly bespoke enterprise  solutions in lightening speed.</div></td>
                    </tr>
                    <!-- Bullet -->
                    <tr>
                      <td height="12" style="font-size: 12px; line-height: 12px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr>
                              <td align="left" width="20"><img align="middle" alt="" border="0" src="http://www.kademi.co/theme/images/emails/list-icon.png" style="display: block; width: 10px;" width="10" /></td>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 22px;"><!-- ======= list item ======= -->
                                
                                <div style="line-height: 22px;">Extend your in-house digital capability</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="4" style="font-size: 4px; line-height: 4px;">&nbsp;</td>
                    </tr>
                    <!-- Bullet --><!-- Bullet -->
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr>
                              <td align="left" width="20"><img align="middle" alt="" border="0" src="http://www.kademi.co/theme/images/emails/list-icon.png" style="display: block; width: 10px;" width="10" /></td>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 22px;"><!-- ======= list item ======= -->
                                
                                <div style="line-height: 22px;">Reduce development costs</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="4" style="font-size: 4px; line-height: 4px;">&nbsp;</td>
                    </tr>
                    <!-- Bullet --><!-- Bullet -->
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr>
                              <td align="left" width="20"><img align="middle" alt="" border="0" src="http://www.kademi.co/theme/images/emails/list-icon.png" style="display: block; width: 10px;" width="10" /></td>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 22px;"><!-- ======= list item ======= -->
                                
                                <div style="line-height: 22px;">Faster implementation of projects</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="4" style="font-size: 4px; line-height: 4px;">&nbsp;</td>
                    </tr>
                    <!-- Bullet --><!-- Bullet -->
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr>
                              <td align="left" width="20"><img align="middle" alt="" border="0" src="http://www.kademi.co/theme/images/emails/list-icon.png" style="display: block; width: 10px;" width="10" /></td>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 22px;"><!-- ======= list item ======= -->
                                
                                <div style="line-height: 22px;">Get started in minutes</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="8" style="font-size: 8px; line-height: 8px;">&nbsp;</td>
                    </tr>
                    <!-- Bullet -->
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr class="hide">
      <td height="15" style="font-size: 15px; line-height: 15px;">&nbsp;</td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 
<!-- ======= 1/2 text 1/2 big image ======= -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container800" width="800">
          <tbody>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="half-container800" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="340">
                  <tbody>
                    <tr>
                      <td><table align="right" border="0" cellpadding="0" cellspacing="0" class="container800" width="300">
                          <tbody>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="290">
                                  <tbody>
                                    <tr class="hide-800">
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590">
                                          <tbody>
                                            <tr>
                                              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="40">
                                                  <tbody>
                                                    <tr>
                                                      <td height="3" style="font-size: 3px; line-height: 3px;">&nbsp;</td>
                                                    </tr>
                                                  </tbody>
                                                </table></td>
                                            </tr>
                                          </tbody>
                                        </table></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-center main-header title_color" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 24px"><a href="http://www.kademi.co/blogs/kb/a-guide-to-sales-force-reward-programs/" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px; text-decoration:none;">A guide to salesforce reward programs</a></div></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-left title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 23px">Discover how Kademi&rsquo;s powerful reward capabilities will enable your business to accelerate sales by implementing a salesforce reward program.</div></td>
                                    </tr>
                                    <tr>
                                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellpadding="0" cellspacing="0">
                                          <tr>
                                            <td align="left" class="align-center" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/blogs/kb/can-you-afford-not-to-automate" style="color: #384050; text-decoration: none;">Read More</a></div></td>
                                            <td width="5">&nbsp;</td>
                                            <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                                          </tr>
                                        </table></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                  <tbody>
                    <tr>
                      <td height="50" style="font-size: 50px; line-height: 50px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container800_img" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <!-- =======  ====== -->
                  <tbody>
                    <tr>
                      <td align="left" class="section800_img"><a href="http://www.kademi.co/blogs/kb/a-guide-to-sales-force-reward-programs/" style=" border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/blog1.png" style="display: block;" width="400" /></a></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --><!-- ======= 1/2 text 1/2 big image version 2 ======= -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container800" width="800">
          <tbody>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container800_img" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <!-- =======  ====== -->
                  <tbody>
                    <tr>
                      <td align="left" class="section800_img"><a href="http://www.kademi.co/blogs/kb/let-s-put-an-end-to-the-build-vs-buy-debate/" style=" border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/blog2.png" style="display: block;" width="400" /></a></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                  <tbody>
                    <tr>
                      <td height="50" style="font-size: 50px; line-height: 50px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="half-container800" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="340">
                  <tbody>
                    <tr>
                      <td><table align="right" border="0" cellpadding="0" cellspacing="0" class="container800" width="300">
                          <tbody>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="290">
                                  <tbody>
                                    <tr class="hide-800">
                                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590">
                                          <tbody>
                                            <tr>
                                              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="40">
                                                  <tbody>
                                                    <tr>
                                                      <td height="3" style="font-size: 3px; line-height: 3px;">&nbsp;</td>
                                                    </tr>
                                                  </tbody>
                                                </table></td>
                                            </tr>
                                          </tbody>
                                        </table></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-center main-header title_color" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 24px"><a href="http://www.kademi.co/blogs/kb/let-s-put-an-end-to-the-build-vs-buy-debate/" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px; text-decoration:none;">Build Vs. Buy Debate</a></div></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-left title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 23px">To build, or buy, that is the question. Discover the pros and cons to building software vs. using a cloud based alternative.</div></td>
                                    </tr>
                                    <tr>
                                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellpadding="0" cellspacing="0">
                                          <tr>
                                            <td align="left" class="align-center" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/blogs/kb/can-you-afford-not-to-automate" style="color: #384050; text-decoration: none;">Read More</a></div></td>
                                            <td width="5">&nbsp;</td>
                                            <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                                          </tr>
                                        </table></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --><!-- ======= 1/2 text 1/2 big image ======= -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container800" width="800">
          <tbody>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="half-container800" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="340">
                  <tbody>
                    <tr>
                      <td><table align="right" border="0" cellpadding="0" cellspacing="0" class="container800" width="300">
                          <tbody>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="290">
                                  <tbody>
                                    <tr class="hide-800">
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590">
                                          <tbody>
                                            <tr>
                                              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="40">
                                                  <tbody>
                                                    <tr>
                                                      <td height="3" style="font-size: 3px; line-height: 3px;">&nbsp;</td>
                                                    </tr>
                                                  </tbody>
                                                </table></td>
                                            </tr>
                                          </tbody>
                                        </table></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-center main-header title_color" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 24px"><a href="http://www.kademi.co/blogs/kb/can-you-afford-not-to-automate" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; letter-spacing: 1px; line-height: 24px; text-decoration:none;">Can You Afford Not to Automate?</a></div></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="align-left title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 23px">When used, the potential of automated marketing campaigns cultivate incredible opportunities. </div></td>
                                    </tr>
                                    <tr>
                                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellpadding="0" cellspacing="0">
                                          <tr>
                                            <td align="left" class="align-center" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/blogs/kb/can-you-afford-not-to-automate" style="color: #384050; text-decoration: none;">Read More</a></div></td>
                                            <td width="5">&nbsp;</td>
                                            <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                                          </tr>
                                        </table></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                  <tbody>
                    <tr>
                      <td height="50" style="font-size: 50px; line-height: 50px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container800_img" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <!-- =======  ====== -->
                  <tbody>
                    <tr>
                      <td align="left" class="section800_img"><a href="http://www.kademi.co/blogs/kb/can-you-afford-not-to-automate" style=" border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/blog3.png" style="display: block;" width="400" /></a></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= icon headline and text ====== -->

<table bgcolor="f8f9fa" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr><!-- ======= icon ======= -->
              <td align="center"><a href="http://www.kademi.co/blogs/kb/kademi-platform-updates/"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/icon-update.png" style="display: block; width: auto;" width="70" /></a></td>
            </tr>
            <tr>
              <td height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, sans-serif; mso-line-height-rule: exactly; font-weight: 700; letter-spacing: 1px; line-height: 20px;"><!-- ======= section header ======= -->
                
                <div style="line-height: 20px;"><a href="http://www.kademi.co/blogs/kb/kademi-platform-updates/" style="color: #384050; font-size: 18px; font-family: Raleway, sans-serif; mso-line-height-rule: exactly; font-weight: 700; letter-spacing: 1px; line-height: 20px; text-decoration:none;">PLATFORM UPDATE</a></div></td>
            </tr>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center" class="text_color" style="color: #9d9b9d; font-size: 13px; font-family: 'Open Sans', sans-serif; mso-line-height-rule: exactly; line-height: 23px;"><div style="line-height: 23px"><!-- ======= section text ======= -->The Kademi product team have been working around the clock to deliver you some fantastic new features this month including an update to our <strong>custom app framework</strong> and a very special update to how you <strong>manage user profiles</strong>.</div></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0">
                  <tbody>
                    <tr>
                      <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/blogs/kb/kademi-platform-updates/" style="color: #384050; text-decoration: none;">See the full update here</a></div></td>
                      <td width="5">&nbsp;</td>
                      <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= 2 columns blog section ======= -->
<table border="0" width="100%" cellpadding="0" cellspacing="0" bgcolor="ffffff">
  <tr>
    <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
  </tr>
  <tr>
    <td align="center"><table border="0" align="center" width="590" cellpadding="0" cellspacing="0" class="blog-container590">
        <tr>
          <td align="center" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px;" class="title_color"><!-- ======= section text ====== -->
            
            <div style="line-height: 24px"> KADEMI HOW TO'S </div></td>
        </tr>
        <tr>
          <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
        </tr>
        <tr>
          <td><table border="0" width="280" align="left" cellpadding="0" cellspacing="0" bgcolor="ffffff" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" class="blog-container590">
              <tr> 
                <!-- ======= image 265px width ======= -->
                
                <td align="center" class="section-img"><a href="http://www.kademi.co/blogs/kb/the-copy-paste-ms-word-debacle/" style=" border-style: none !important; border: 0 !important;"><img src="http://www.kademi.co/theme/images/emails/howto-copy.png" style="display: block; width: 280px;" width="280" border="0" alt=""/></a></td>
              </tr>
              <tr>
                <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
              </tr>
              <tr>
                <td align="center"><table border="0" width="250" align="center" cellpadding="0" cellspacing="0" class="blog-container580">
                    <tr>
                      <td align="left" style="color: #384050; font-size: 16px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 22px;" class="text_color"><div style="line-height: 22px"> 
                          
                          <!-- ======= section text ======= --> 
                          
                          <a href="http://www.kademi.co/blogs/kb/the-copy-paste-ms-word-debacle/" style="color: #384050; font-size: 16px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 22px; text-decoration:none;">The copy paste Word debacle </a></div></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="left" width="40" border="0" cellpadding="0" cellspacing="0" bgcolor="e9135a" style="border-radius: 5px;">
                          <tr>
                            <td height="3" style="font-size: 3px; line-height: 3px;"></td>
                          </tr>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;" class="title_color"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px"> Ever wondered why pasting MS Word content into an editor creates formatting issues? </div></td>
                    </tr>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"> <a href="http://www.kademi.co/blogs/kb/the-copy-paste-ms-word-debacle/" style="color: #384050; text-decoration: none;">Read more</a> </div></td>
                            <td width="5">&nbsp;</td>
                            <td align="left"><img src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" border="0" alt=""/></td>
                          </tr>
                        </table></td>
                    </tr>
                  </table></td>
              </tr>
              <tr>
                <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
              </tr>
            </table>
            <table border="0" width="5" align="left" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" class="blog-container590">
              <tr>
                <td width="5" height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
              </tr>
            </table>
            <table border="0" width="280" align="right" cellpadding="0" cellspacing="0" bgcolor="ffffff" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" class="blog-container590">
              <tr> 
                <!-- ======= image 265px width ======= -->
                
                <td align="center" class="section-img"><a href="http://www.kademi.co/blogs/kb/creating-your-first-email-trigger/" style=" border-style: none !important; border: 0 !important;"><img src="http://www.kademi.co/theme/images/emails/howto-email.png" style="display: block; width: 280px;" width="280" border="0" alt=""/></a></td>
              </tr>
              <tr>
                <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
              </tr>
              <tr>
                <td align="center"><table border="0" width="250" align="center" cellpadding="0" cellspacing="0" class="blog-container580">
                    <tr>
                      <td align="left" style="color: #384050; font-size: 16px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 22px;" class="text_color"><div style="line-height: 22px"> 
                          
                          <!-- ======= section text ======= --> 
                          
                          <a href="http://www.kademi.co/blogs/kb/creating-your-first-email-trigger/" style="color: #384050; font-size: 16px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 22px; text-decoration:none;">Creating your first email trigger</a></div></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="left" width="40" border="0" cellpadding="0" cellspacing="0" bgcolor="e9135a" style="border-radius: 5px;">
                          <tr>
                            <td height="3" style="font-size: 3px; line-height: 3px;"></td>
                          </tr>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;" class="title_color"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px"> A quick and simple way to setup an auto email trigger inside your Kademi account. </div></td>
                    </tr>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"> <a href="http://www.kademi.co/blogs/kb/creating-your-first-email-trigger/" style="color: #384050; text-decoration: none;">Read more</a> </div></td>
                            <td width="5">&nbsp;</td>
                            <td align="left"><img src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" border="0" alt=""/></td>
                          </tr>
                        </table></td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
        </tr>
      </table></td>
  </tr>
  <tr>
    <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
  </tr>
</table>
<!-- ======= end section ======= --> 

<!-- ======= partners section ====== -->

<table bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590 bodybg_color" width="590">
          <tbody>
            <tr>
              <td align="center" class="title_color" style="color: #ffffff; font-size: 18px; font-family: Raleway, Calibri, sans-serif; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                
                <div style="line-height: 24px"><strong>YOUR SUCCESS IS OUR SUCCESS</strong></div></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" width="400">
                  <tbody>
                    <tr>
                      <td align="center" class="title_color" style="color: #e1e3e6; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">Providing unprecedented platform support to customers around the world, we are driven by your results and business growth.</div></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="270">
                  <tbody>
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="120">
                          <tbody>
                            <tr>
                              <td align="center"><a href="http://www.kademi.co/" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="Johnson & Johnson" border="0" src="http://www.kademi.co/theme/images/emails/logo1.png" style="display: block;" width="120" /></a></td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="left" border="0" cellpadding="0" cellspacing="0" class="container50" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                          <tbody>
                            <tr>
                              <td height="30" style="font-size: 30px; line-height: 30px;" width="5">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="right" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="120">
                          <tbody>
                            <tr>
                              <td align="center"><a href="http://www.kademi.co/" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="Deloitte" border="0" src="http://www.kademi.co/theme/images/emails/logo2.png" style="display: block;" width="120" /></a></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="270">
                  <tbody>
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="120">
                          <tbody>
                            <tr>
                              <td align="center"><a href="http://www.kademi.co/" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="Kenwood" border="0" src="http://www.kademi.co/theme/images/emails/logo3.png" style="display: block;" width="120" /></a></td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="left" border="0" cellpadding="0" cellspacing="0" class="container50" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                          <tbody>
                            <tr>
                              <td height="30" style="font-size: 30px; line-height: 30px;" width="5">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="right" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="120">
                          <tbody>
                            <tr>
                              <td align="center"><a href="http://www.kademi.co/" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="MAHLE" border="0" src="http://www.kademi.co/theme/images/emails/logo4.png" style="display: block;" width="120" /></a></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= 3 columns image and text ======= -->

<table bgcolor="f8f9fa" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td align="center" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                
                <div style="line-height: 24px"><a href="http://www.kademi.co/features-back-office.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px; text-decoration:none;">EXTENSIVE CAPABILITIES</a></div></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center" class="title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                
                <div style="line-height: 24px">Packed full of powerful back-office features to support your business activites.</div></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="50">
                  <tbody>
                    <tr>
                      <td height="3" style="font-size: 3px; line-height: 3px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="section-item" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="385">
                  <tbody>
                    <tr>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="180">
                          <tbody>
                            <tr><!-- ======= image ======= -->
                              <td align="center" class="section-img"><a href="http://www.kademi.co/features-back-office.html" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/bo-1.png" style="display: block; width: 180px;" width="180" /></a></td>
                            </tr>
                            <tr>
                              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" class="title_color" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 24px"><a href="http://www.kademi.co/features-back-office.html" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px; text-decoration:none;">MARKETING</a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" class="align-center title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 23px">Manage the sending and automation of your email and SMS communications.</div></td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                          <tbody>
                            <tr>
                              <td height="40" style="font-size: 40px; line-height: 40px;" width="2">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table>
                        <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="180">
                          <tbody>
                            <tr><!-- ======= image ======= -->
                              <td align="center" class="section-img"><a href="http://www.kademi.co/features-back-office.html" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/bo-2.png" style="display: block; width: 180px;" width="180" /></a></td>
                            </tr>
                            <tr>
                              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" class="title_color" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 24px"><a href="http://www.kademi.co/features-back-office.html" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px; text-decoration:none;">CRM</a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" class="align-center title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 23px">A fully integrated CRM to manage, segment and target your customers.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                  <tbody>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="180">
                  <tbody>
                    <tr><!-- ======= image ======= -->
                      <td align="center" class="section-img"><a href="http://www.kademi.co/features-back-office.html" style=" border-style: none !important; display: block; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/bo-3.png" style="display: block; width: 180px;" width="180" /></a></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center" class="title_color" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px"><a href="http://www.kademi.co/features-back-office.html" style="color: #27282a; font-size: 16px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px; text-decoration:none;">VERSIONING</a></div></td>
                    </tr>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center" class="align-center title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">Powerful built in versioning that tracks every change you make to your digital projects.</div></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0">
                  <tbody>
                    <tr>
                      <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/features-back-office.html" style="color: #384050; text-decoration: none;">Explore the Kademi back-office</a></div></td>
                      <td width="5">&nbsp;</td>
                      <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --><!-- ======= features ====== -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td align="center" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                
                <div style="line-height: 24px"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px; text-decoration:none;">CODE LESS. CREATE MORE.</a></div></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="50">
                  <tbody>
                    <tr>
                      <td height="4" style="font-size: 4px; line-height: 4px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" width="360">
                  <tbody>
                    <tr>
                      <td align="center" class="align-center text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">Spend less time coding by combining powerful web-applications to build your solution.</div></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="255">
                  <tbody>
                    <tr><!-- ======= icon ====== -->
                      <td align="left" valign="top"><span><a href="http://www.kademi.co/features-apps.html"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/if-1.png" style="display: block; width: auto;" width="30" /></a></span></td>
                      <td width="20">&nbsp;</td>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td align="left" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 22px"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px; text-decoration:none;">Reward Store </a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'open Sans', Calibri, sans-serif; line-height: 22px;"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 22px;">Allows your users to redeem prizes from a store using points.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="255">
                  <tbody>
                    <tr><!-- ======= icon ====== -->
                      <td align="left" valign="top"><span><a href="http://www.kademi.co/features-apps.html"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/if-2.png" style="display: block; width: auto;" width="30" /></a></span></td>
                      <td width="20">&nbsp;</td>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td align="left" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 22px"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px; text-decoration:none;">Learning and training</a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 22px;">Allows administrators to create and publish structured learning content for their users.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="255">
                  <tbody>
                    <tr><!-- ======= icon ====== -->
                      <td align="left" valign="top"><span><a href="http://www.kademi.co/features-apps.html"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/if-3.png" style="display: block; width: auto;" width="30" /></a></span></td>
                      <td width="20">&nbsp;</td>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td align="left" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 22px"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px; text-decoration:none;">Group resources </a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'open Sans', Calibri, sans-serif; line-height: 22px;"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 22px;">Allows user groups to have folders of files, which members of the group can download.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="255">
                  <tbody>
                    <tr><!-- ======= icon ====== -->
                      <td align="left" valign="top"><span><a href="http://www.kademi.co/features-apps.html"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/if-4.png" style="display: block; width: auto;" width="30" /></a></span></td>
                      <td width="20">&nbsp;</td>
                      <td><table align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                          <tbody>
                            <tr>
                              <td align="left" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px;"><!-- ======= section text ====== -->
                                
                                <div style="line-height: 22px"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 22px; text-decoration:none;">Blogs</a></div></td>
                            </tr>
                            <tr>
                              <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'open Sans', Calibri, sans-serif; line-height: 22px;"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 22px;">Provides users access to rich content managed by blogs in your account.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0">
                  <tbody>
                    <tr>
                      <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/features-apps.html" style="color: #384050; text-decoration: none;">See the full list here</a></div></td>
                      <td width="5">&nbsp;</td>
                      <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end features ====== --> 

<!-- ======= 1/2 text 1/2 image profile ======= -->

<table bgcolor="f8f9fa" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="280">
                  <tbody>
                    <tr>
                      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
                          <tbody>
                            <tr>
                              <td align="left" class="title_color" style="color: #384050; font-size: 20px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 24px;"><div class="editable_text" style="line-height: 24px"><!-- ======= section text ======= --><span class="text_container"><a href="https://www.linkedin.com/in/patrickhone" style="color: #384050; font-size: 20px; font-family: Raleway, sans-serif; font-weight: 500; mso-line-height-rule: exactly; line-height: 24px; text-decoration:none;">Patrick Hone</a></span></div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td align="left" class="title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">Co-Founder</div></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="left" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" style="border-radius: 5px;" width="40">
                          <tbody>
                            <tr>
                              <td height="3" style="font-size: 3px; line-height: 3px;">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" class="title_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">&ldquo;Our mission is to disrupt the enterprise software market by delivering our customers a single cloud platform to support their end to end business needs.&rdquo;</div></td>
                    </tr>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 1Opx;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="50" style="font-size: 50px; line-height: 50px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <!-- =======  ====== -->
                  <tbody>
                    <tr>
                      <td align="center"><a href="https://www.linkedin.com/in/patrickhone" style=" border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/img8.png" style="display: block; width: 287px;" width="287" /></a></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= 1/2 big image 1/2 text version 1 ======= -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="bg_color" width="100%">
  <tbody>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container800" width="800">
          <tbody>
            <tr>
              <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" border="0" cellpadding="0" cellspacing="0" class="container800_img" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;">
                  <!-- =======  ====== -->
                  <tbody>
                    <tr>
                      <td align="left" class="section800_img"><a href="http://www.kademi.co/contact.html" style=" border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/big-img3.png" style="display: block;" width="387" /></a></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="hide" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="2">
                  <tbody>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;" width="2">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="half-container800" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="340">
                  <tbody>
                    <tr>
                      <td><table align="right" border="0" cellpadding="0" cellspacing="0" class="container800" width="300">
                          <tbody>
                            <tr>
                              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="290">
                                  <tbody>
                                    <tr class="hide-800">
                                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="title_color main-header" style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px;"><!-- ======= section text ====== -->
                                        
                                        <div style="line-height: 24px"><a href="http://www.kademi.co/contact.html"  style="color: #384050; font-size: 24px; font-family: Raleway, Calibri, sans-serif; font-weight: 500; line-height: 24px; text-decoration:none;">Calling on developers</a></div></td>
                                    </tr>
                                    <tr>
                                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td align="left" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section subtitle ====== -->
                                        
                                        <div style="line-height: 23px;"><strong>HTML, JavaScript &amp; Bootstrap</strong>. Everything you need to build enterprise solutions on Kademi. Contact the team today to enquire about becoming a Kademi certified developer.</div></td>
                                    </tr>
                                    <tr>
                                      <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellpadding="0" cellspacing="0">
                                          <tbody>
                                            <tr>
                                              <td align="left" style="color: #384050; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 22px;"><div style="line-height: 22px;"><a href="http://www.kademi.co/contact.html" style="color: #384050; text-decoration: none;">Contact the team</a></div></td>
                                              <td width="5">&nbsp;</td>
                                              <td align="left"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/arrow.png" style="display: block;" width="5" /></td>
                                            </tr>
                                          </tbody>
                                        </table></td>
                                    </tr>
                                  </tbody>
                                </table></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= 2 columns pricing tables ======= -->

<table bgcolor="f8f9fa" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td height="60" style="font-size: 60px; line-height: 60px;">&nbsp;</td>
    </tr>
    <tr>
      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td align="center" class="title_color" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px;"><!-- ======= section text ====== -->
                
                <div style="line-height: 24px"><a href="http://www.kademi.co/get-kademi.html" style="color: #384050; font-size: 18px; font-family: Raleway, Calibri, sans-serif; font-weight: 700; letter-spacing: 1px; line-height: 24px; text-decoration:none;">SCALABLE &amp; AFFORDABLE</a></div></td>
            </tr>
            <tr>
              <td height="15" style="font-size: 15px; line-height: 15px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" width="380">
                  <tbody>
                    <tr>
                      <td align="center" class="align-center text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 23px">Monthly subscriptions that scale with your digital projects.</div></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="45" style="font-size: 45px; line-height: 45px;">&nbsp;</td>
            </tr>
            <tr>
              <td><table align="left" bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; border: 1px solid #e4e6ec;" width="285">
                  <tbody>
                    <tr bgcolor="e9135a">
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr bgcolor="e9135a">
                      <td align="center" class="title_color" style="color: #ffffff; font-size: 14px; font-family: 'Open Sans', Calibri, sans-serif; letter-spacing: 1px; mso-line-height-rule: exactly; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px">FREE</div></td>
                    </tr>
                    <tr bgcolor="e9135a">
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center" class="title_color" style="color: #384050; font-size: 40px; font-family: 'Open sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px">$0</div></td>
                    </tr>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" width="240">
                          <tbody>
                            <tr>
                              <td align="center" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;" valign="top"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 23px;">Get started today with a Free Kademi account. Up to 20 users and unlimited access to features.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" class="main_color" style="border-radius: 4px;" width="96">
                          <tbody>
                            <tr>
                              <td height="5" style="font-size: 5px; line-height: 5px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" style="color: #ffffff; font-size: 11px; font-family: 'Open Sans', Calibri, sans-serif; letter-spacing: 1px;"><!-- ======= main section button ======= -->
                                
                                <div style="line-height: 20px;"><a href="http://www.kademi.co/get-kademi.html" style="color: #ffffff; text-decoration: none;">GET STARTED</a></div></td>
                            </tr>
                            <tr>
                              <td height="5" style="font-size: 5px; line-height: 5px;">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="35" style="font-size: 35px; line-height: 35px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="1">
                  <tbody>
                    <tr>
                      <td height="40" style="font-size: 40px; line-height: 40px;" width="1">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; border: 1px solid #e4e6ec;" width="285">
                  <tbody>
                    <tr bgcolor="e9135a">
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr bgcolor="e9135a">
                      <td align="center" class="title_color" style="color: #ffffff; font-size: 14px; font-family: 'Open Sans', Calibri, sans-serif; letter-spacing: 1px; mso-line-height-rule: exactly; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px">STANDARD</div></td>
                    </tr>
                    <tr bgcolor="e9135a">
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center" class="title_color" style="color: #384050; font-size: 40px; font-family: 'Open sans', Calibri, sans-serif; mso-line-height-rule: exactly; line-height: 24px;"><!-- ======= section text ====== -->
                        
                        <div style="line-height: 24px">$500</div></td>
                    </tr>
                    <tr>
                      <td height="30" style="font-size: 30px; line-height: 30px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" class="container580" width="240">
                          <tbody>
                            <tr>
                              <td align="center" class="text_color" style="color: #878b99; font-size: 13px; font-family: 'Open Sans', Calibri, sans-serif; line-height: 23px;" valign="top"><!-- ======= section subtitle ====== -->
                                
                                <div style="line-height: 23px;">Up to 1000 users, unlimited access to features, and unprecedented live chat support from the Kademi team.</div></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="25" style="font-size: 25px; line-height: 25px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="center"><table align="center" bgcolor="e9135a" border="0" cellpadding="0" cellspacing="0" class="main_color" style="border-radius: 4px;" width="96">
                          <tbody>
                            <tr>
                              <td height="5" style="font-size: 5px; line-height: 5px;">&nbsp;</td>
                            </tr>
                            <tr>
                              <td align="center" style="color: #ffffff; font-size: 11px; font-family: 'Open Sans', Calibri, sans-serif; letter-spacing: 1px;"><!-- ======= main section button ======= -->
                                
                                <div style="line-height: 20px;"><a href="http://www.kademi.co/get-kademi.html" style="color: #ffffff; text-decoration: none;">GET STARTED</a></div></td>
                            </tr>
                            <tr>
                              <td height="5" style="font-size: 5px; line-height: 5px;">&nbsp;</td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                    <tr>
                      <td height="35" style="font-size: 35px; line-height: 35px;">&nbsp;</td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
          </tbody>
        </table></td>
    </tr>
    <tr>
      <td height="40" style="font-size: 40px; line-height: 40px;">&nbsp;</td>
    </tr>
  </tbody>
</table>
<!-- ======= end section ======= --> 

<!-- ======= Prefooter ====== -->

<table bgcolor="ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
    <tr>
      <td><table align="center" border="0" cellpadding="0" cellspacing="0" class="container590" width="590">
          <tbody>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
            <tr>
              <td align="center"><table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="280">
                  <tbody>
                    <tr><!-- ======= logo ======= -->
                      <td align="left"><a href="" style="display: block;"><img alt="Kademi" border="0" src="http://www.kademi.co/theme/images/emails/logo.png" style="display: block; width: auto;" width="93" /></a></td>
                    </tr>
                    <tr>
                      <td height="8" style="font-size: 8px; line-height: 8px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" class="text_color" style="color: #878b99; font-size: 12px; font-family: 'Open Sans', sans-serif; mso-line-height-rule: exactly; line-height: 23px;"><div style="line-height: 23px"><!-- ======= section text ======= -->Kademi is a cloud platform to create enterprise digital solutions at lightning speed.</div></td>
                    </tr>
                  </tbody>
                </table>
                <table align="left" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="5">
                  <tbody>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;" width="5">&nbsp;</td>
                    </tr>
                  </tbody>
                </table>
                <table align="right" border="0" cellpadding="0" cellspacing="0" class="container590" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;" width="280">
                  <tbody>
                    <tr>
                      <td height="10" style="font-size: 10px; line-height: 10px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left" class="text_color" style="color: #878b99; font-size: 12px; font-family: 'Open Sans', Calibri, sans-serif;  mso-line-height-rule: exactly; line-height: 23px;"><!-- ======= main header ======= -->
                        
                        <div class="editable_text" style="line-height: 23px;"><span class="text_container">View our<a href="http://www.kademi.co/terms.html" style="color:#e9135a;"> terms &amp; conditions</a> </span> here.</div></td>
                    </tr>
                    <tr>
                      <td height="20" style="font-size: 20px; line-height: 20px;">&nbsp;</td>
                    </tr>
                    <tr>
                      <td align="left"><table align="left" border="0" cellpadding="0" cellspacing="0">
                          <tbody>
                            <tr>
                              <td><a class="editable_img" href="https://twitter.com/kademihq" style="display: block; border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/twitter.png" style="display: block;" width="24" /></a></td>
                              <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
                              <td><a class="editable_img" href="https://www.facebook.com/pages/Kademico/526109317475941" style="display: block; border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/facebook.png" style="display: block;" width="24" /></a></td>
                              <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
                              <td><a class="editable_img" href="https://www.linkedin.com/company/2683735" style="display: block; border-style: none !important; border: 0 !important;"><img alt="" border="0" src="http://www.kademi.co/theme/images/emails/google.png" style="display: block;" width="24" /></a></td>
                            </tr>
                          </tbody>
                        </table></td>
                    </tr>
                  </tbody>
                </table></td>
            </tr>
            <tr>
              <td height="50" style="font-size: 50px; line-height: 50px;">&nbsp;</td>
            </tr>
          </tbody>
        </table></td>
    </tr>
  </tbody>
</table>
<!-- ======= end footer ====== -->

</body>
</html>		
		

Ask a question, or offer an answer